home *** CD-ROM | disk | FTP | other *** search
/ Over 1,000 Windows 95 Programs / Over 1000 Windows 95 Programs (Microforum) (Disc 1).iso / 0696 / setup.arv / WWWLIB.HDF < prev    next >
Encoding:
Text File  |  1997-04-08  |  3.3 KB  |  66 lines

  1. ;******************************************************************************
  2. ; Ver 13.1, Last Update Jun 07, 1995                                          *
  3. ;                                   wwwLIB                                    *
  4. ;                                                                             *
  5. ; This library adds functionality to HLPDK 13.1+ docuemnts that are compiled  *
  6. ; to the WWW HTML target                                                      *
  7. ;                                                                             *
  8. ; The following added functionality is added :                                *
  9. ;                                                                             *
  10. ; Text Attributes for internal pieces of text. (bold, italic)                 *
  11. ;******************************************************************************
  12.  
  13. .ifdef www
  14.  
  15. ;******************************************************************************
  16. ;                               Text Attributes                               *
  17. ;                                                                             *
  18. ; boldText - Display text in bold, e.g. - ~Text~boldText~ - Text will be in   *
  19. ;                                         bold                                *
  20. ; italicText - Display text in italic                                         *
  21. ; boldItalicText - display text in bold italic                                *
  22. ; notice that bold italic currently does not work due to HTML limitation, it  *
  23. ; hopefullt be fixed in a future version of HTML.                             *
  24. ;******************************************************************************
  25.  
  26. .userlink boldText '<b>%t</b>'
  27. .userlink italicText '<i>%t</i>'
  28. .userlink boldItalicText '<b><i>%t</i></b>'
  29. .userlink underlineText '%t'
  30.  
  31. .userlink lineBreak '<br>'
  32.  
  33. ;******************************************************************************
  34. ;                                    Links                                    *
  35. ;                                                                             *
  36. ; graphicLibk, graphicPopup - Use an image to link.                           *
  37. ; ftpLink - link using the ftp protocol                                       *
  38. ; gopherLink - link using the gopher protocol                                 *
  39. ; mailto - link using the mailto tag                                          *
  40. ; externalJump - jump to an external file                                     *
  41. ;******************************************************************************
  42.  
  43. .userlink graphicLink '<a href=%f2>%t<img src="%g1"></a>'
  44. .userlink graphicPopup '<a href=%f2>%t<img src="%g1"></a>'
  45. .userlink ftpLink '<a href=ftp://%1>%t</a>'
  46. .userlink gopherLink '<a href=gopher://%1>%t</a>'
  47. .userlink mailto '<a href=mailto:%t>%t</a>'
  48. .userlink externalJump '<a href="%1">%t</a>'
  49.  
  50. ;******************************************************************************
  51. ;                                   special                                   *
  52. ; horizontalLine displays a horizontal line ..                                *
  53. ; specialChar displays a hex value                                            *
  54. ;******************************************************************************
  55.  
  56. .userlink horizontalLine '<HR>'
  57. .userlink specialChar '&#%t;'
  58.  
  59. .endif
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.